Pointers
Pascal C/C++
wvar
w p: ^integer;
w first: ^student;
wstruct student *first;
OR
int *p;
student *first;
NOTE: In C, which form is used depends on whether the type student was declared using typedef or not.